home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / CHATZILLA.XPI / bin / chrome / chatzilla.jar / content / chatzilla / channels.xul < prev    next >
Encoding:
Extensible Markup Language  |  2004-12-19  |  4.7 KB  |  114 lines

  1. <?xml version="1.0"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is ChatZilla.
  16.    -
  17.    - The Initial Developer of the Original Code is James Ross.
  18.    - Portions created by the Initial Developer are Copyright (C) 2004
  19.    - the Initial Developer. All Rights Reserved.
  20.    -
  21.    - Contributor(s):
  22.    -   James Ross <silver@warwickcompsoc.co.uk>
  23.    -
  24.    - Alternatively, the contents of this file may be used under the terms of
  25.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  26.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.    - in which case the provisions of the GPL or the LGPL are applicable instead
  28.    - of those above. If you wish to allow use of your version of this file only
  29.    - under the terms of either the GPL or the LGPL, and not to allow others to
  30.    - use your version of this file under the terms of the MPL, indicate your
  31.    - decision by deleting the provisions above and replace them with the notice
  32.    - and other provisions required by the LGPL or the GPL. If you do not delete
  33.    - the provisions above, a recipient may use your version of this file under
  34.    - the terms of any one of the MPL, the GPL or the LGPL.
  35.    -
  36.    - ***** END LICENSE BLOCK ***** -->
  37.  
  38. <!DOCTYPE dialog SYSTEM "chrome://chatzilla/locale/channels.dtd">
  39.  
  40. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  41. <?xml-stylesheet href="chrome://chatzilla/skin/channels.css" type="text/css"?>
  42.  
  43. <dialog xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  44.     xmlns:html="http://www.w3.org/1999/xhtml"
  45.     windowtype="irc:chatzilla:channels"
  46.     buttons="cancel"
  47.     onload="onLoad(); runFilter()"
  48.     ondialogaccept="return joinChannel()"
  49.     title="&window.title;">
  50.  
  51.   <script src="chrome://chatzilla/content/lib/js/utils.js"/>
  52.   <script src="chrome://chatzilla/content/lib/js/file-utils.js"/>
  53.   <script src="chrome://chatzilla/content/lib/xul/tree-utils.js"/>
  54.   <script src="channels.js"/>
  55.   
  56.   <hbox flex="1">
  57.     <vbox flex="1" id="leftPanel">
  58.       <hbox align="center">
  59.         <label value="&qsearch.label;" accesskey="&qsearch.accesskey;" 
  60.             control="filterText"/>
  61.         <textbox id="filterText" flex="1" type="timed" timeout="500" 
  62.             oncommand="runFilter()" onkeypress="onKeyPress(event)"/>
  63.       </hbox>
  64.       <checkbox id="searchTopics" oncommand="runFilter(); focusSearch()" 
  65.           label="&topics.label;" accesskey="&topics.accesskey;" 
  66.           checked="true"/>
  67.       <tree id="channelList" flex="1" hidecolumnpicker="true" seltype="single"
  68.           onselect="onSelectionChange()">
  69.         <treecols>
  70.           <treecol label="&col.name;"  width="100" id="chanColName"/>
  71.           <treecol label="&col.users;" width="50"  id="chanColUsers"/>
  72.           <treecol label="&col.topic;" flex="1"    id="chanColTopic"/>
  73.         </treecols>
  74.         <treechildren flex="1"/>
  75.       </tree>
  76.       <hbox id="loadContainer">
  77.         <label id="loadLabel" value="" flex="1"/>
  78.         <deck id="loadBarDeck">
  79.           <progressmeter id="loadBar" mode="undetermined" />
  80.           <box/>
  81.         </deck>
  82.       </hbox>
  83.     </vbox>
  84.     <separator class="groove"/>
  85.     <vbox id="rightPanel">
  86.       <button disabled="true" id="joinBtn" label="&join.label;" 
  87.           accesskey="&join.accesskey;" default="true"
  88.           oncommand="if (joinChannel()) window.close()"/>
  89.       <separator class="groove"/>
  90.       <grid>
  91.         <columns><column/><column flex="1"/></columns>
  92.         <rows>
  93.           <row align="center">
  94.             <label value="&minusers.label;" accesskey="&minusers.accesskey;" 
  95.                 control="minUsers"/>
  96.             <textbox id="minUsers" type="timed" timeout="500" 
  97.                 oncommand="runFilter()"/>
  98.             </row>
  99.             <row align="center">
  100.             <label value="&maxusers.label;" accesskey="&maxusers.accesskey;"
  101.                 control="maxUsers"/>
  102.             <textbox id="maxUsers" type="timed" timeout="500" 
  103.                 oncommand="runFilter()"/>
  104.           </row>
  105.         </rows>
  106.       </grid>
  107.       <separator/>
  108.       <button id="refreshNow" label="&refresh.label;" 
  109.           accesskey="&refresh.accesskey;" 
  110.           oncommand="refreshList(); focusSearch()"/>
  111.     </vbox>
  112.   </hbox>
  113. </dialog>
  114.